home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / postgres / mpsql-1.001 / mpsql-1~ / mpsql-1.0 / image.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-28  |  762 b   |  20 lines

  1. /************************************************************************/
  2. /* File   : image.h                                    */
  3. /* Purpose: graphics module header for mpsql                            */
  4. /* By     : Keith R. Davis                            */
  5. /* Date   : 9/9/95                                    */
  6. /* Notes  : Modified from source  by Douglas Young                      */
  7. /*          Copyright 1994 by Prentice Hall                        */ 
  8. /************************************************************************/
  9.  
  10. #ifndef _IMAGE_H
  11. #define _IMAGE_H
  12.  
  13. /* installs the specified pixmap on the passed label widget */
  14. void InstallLabeledPixmap ( Widget w, char **xpmDescription );
  15.  
  16. /* installs the applications window manager icon */
  17. void SetupIcon ( Widget shell, char **xpmDesc );
  18.  
  19. #endif    
  20.